From: YAMAMOTO Mitsuharu Date: Tue, 7 Aug 2007 09:02:05 +0000 (+0000) Subject: (__morecore): Fix the declaration to comply with the definition. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1~1^2~534^2~3^2~1935 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=0be74988566cc39380bf8a8711a3e0705da7375f;p=emacs.git (__morecore): Fix the declaration to comply with the definition. --- diff --git a/src/gmalloc.c b/src/gmalloc.c index 7e317eb4cc3..b1f8513c5fb 100644 --- a/src/gmalloc.c +++ b/src/gmalloc.c @@ -402,7 +402,7 @@ Fifth Floor, Boston, MA 02110-1301, USA. extern __ptr_t bss_sbrk PP ((ptrdiff_t __size)); extern int bss_sbrk_did_unexec; #endif -__ptr_t (*__morecore) PP ((ptrdiff_t __size)) = __default_morecore; +__ptr_t (*__morecore) PP ((__malloc_ptrdiff_t __size)) = __default_morecore; /* Debugging hook for `malloc'. */ __ptr_t (*__malloc_hook) PP ((__malloc_size_t __size));